-
-
Notifications
You must be signed in to change notification settings - Fork 90
Add board stuff and first meeting minutes #175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: James Calligeros <jcalligeros99@gmail.com>
Signed-off-by: James Calligeros <jcalligeros99@gmail.com>
|
Hi! It seems you talk about using 1Password. As an open (source) alternative, have you considered https://github.com/StackExchange/blackbox? blackbox just a bunch of bash scripts that make use of gnupg. This allows you to store secrets, files,... in a git repo and encrypt/decrypt them with your gpg key. E.g. to view an encrypted file: blackbox_cat hosting/secrets.txt.gpgTo register a new file: blackbox_register_new_file foo.txtTip Just take a look at the Getting started guide and the commands it provides. We for example just have different folders based on topic (e.g. hosting, socialmedia,...) and inside those folders we have text files with entries like: Since this is just gpg encryption/decryption, you can add any files in any structure you like (sometimes you may need to store pdf's, etc.) You could just use a secret (non public) repo under the https://github.com/AsahiLinux/ organization for that. We are using it for various Open Source projects and it works great so far. Tip If you want to be able to view diffs even of encrypted files (e.g. with and then add to |
|
We briefly talked about storing passwords inside encrypted git repos but decided against it due to usability reasons. I'm also going to object to anything that is based on gnupg because the UX is horrible as well. |
Signed-off-by: James Calligeros <jcalligeros99@gmail.com>
IMHO this is what blackbox trying to solve. Anyway. |
No description provided.